home *** CD-ROM | disk | FTP | other *** search
- function Error(e : integer) : String;
- begin
- Case e of
- WSAEINTR : Result := 'WSAEINTR';
- WSAEBADF : Result := 'WSAEINTR';
- WSAEFAULT : Result := 'WSAEFAULT';
- WSAEINVAL : Result := 'WSAEINVAL';
- WSAEMFILE : Result := 'WSAEMFILE';
- WSAEWOULDBLOCK : Result := 'WSAEWOULDBLOCK';
- WSAEINPROGRESS : Result := 'WSAEINPROGRESS';
- WSAEALREADY : Result := 'WSAEALREADY';
- WSAENOTSOCK : Result := 'WSAENOTSOCK';
- WSAEDESTADDRREQ : Result := 'WSAEDESTADDRREQ';
- WSAEMSGSIZE : Result := 'WSAEMSGSIZE';
- WSAEPROTOTYPE : Result := 'WSAEPROTOTYPE';
- WSAENOPROTOOPT : Result := 'WSAENOPROTOOPT';
- WSAEPROTONOSUPPORT : Result := 'WSAEPROTONOSUPPORT';
- WSAESOCKTNOSUPPORT : Result := 'WSAESOCKTNOSUPPORT';
- WSAEOPNOTSUPP : Result := 'WSAEOPNOTSUPP';
- WSAEPFNOSUPPORT : Result := 'WSAEPFNOSUPPORT';
- WSAEAFNOSUPPORT : Result := 'WSAEAFNOSUPPORT';
- WSAEADDRINUSE : Result := 'WSAEADDRINUSE';
- WSAEADDRNOTAVAIL : Result := 'WSAEADDRNOTAVAIL';
- WSAENETDOWN : Result := 'WSAENETDOWN';
- WSAENETUNREACH : Result := 'WSAENETUNREACH';
- WSAENETRESET : Result := 'WSAENETRESET';
- WSAECONNABORTED : Result := 'WSAECONNABORTED';
- WSAECONNRESET : Result := 'WSAECONNRESET';
- WSAENOBUFS : Result := 'WSAENOBUFS';
- WSAEISCONN : Result := 'WSAEISCONN';
- WSAENOTCONN : Result := 'WSAENOTCONN';
- WSAESHUTDOWN : Result := 'WSAESHUTDOWN';
- WSAETOOMANYREFS : Result := 'WSAETOOMANYREFS';
- WSAETIMEDOUT : Result := 'WSAETIMEDOUT';
- WSAECONNREFUSED : Result := 'WSAECONNREFUSED';
- WSAELOOP : Result := 'WSAELOOP';
- WSAENAMETOOLONG : Result := 'WSAENAMETOOLONG';
- WSAEHOSTDOWN : Result := 'WSAEHOSTDOWN';
- WSAEHOSTUNREACH : Result := 'WSAEHOSTUNREACH';
- WSAENOTEMPTY : Result := 'WSAENOTEMPTY';
- WSAEPROCLIM : Result := 'WSAEPROCLIM';
- WSAEUSERS : Result := 'WSAEUSERS';
- WSAEDQUOT : Result := 'WSAEDQUOT';
- WSAESTALE : Result := 'WSAESTALE';
- WSAEREMOTE : Result := 'WSAEREMOTE';
- WSASYSNOTREADY : Result := 'WSASYSNOTREADY';
- WSAVERNOTSUPPORTED : Result := 'WSAVERNOTSUPPORTED';
- WSANOTINITIALISED : Result := 'WSANOTINITIALISED';
- WSAHOST_NOT_FOUND : Result := 'WSAHOST_NOT_FOUND';
- WSATRY_AGAIN : Result := 'WSATRY_AGAIN';
- WSANO_RECOVERY : Result := 'WSANO_RECOVERY';
- WSANO_DATA : Result := 'WSANO_DATA';
- end;
- end;
-
-